Metadata-Version: 2.1
Name: pyBigParser
Version: 2.2
Summary: Math parser for simple and compound strings math expressions evaluations
Home-page: https://github.com/carrasquel/pybigparser
Author: Nelson Carrasquel
Author-email: carrasquel@outlook.com
License: BSD License
Description: pyBigParser
        ===========
        
        pyBigParser provides classes for parsing long and complex math 
        expresions. You might find it most useful for tasks involving 
        evaluating from single functions to compounds functions.
        Typical usage often looks like this:
        
        ```python
        
        from pybigparser import evaluator
        
        mybig = evaluator.bigFunction()
        mybig.setFunction("x**2+2*y")
        mybig.addSub("x", "24+6*c")
        mybig.addSub("y", "25 / d")
        mybig.addSub("c", "1")
        mybig.addSub("d", "4")
        
        mybig.evaluate()
        
        mybig.getSubValue("x")
        mybig.getSubValue("y")
        ```
        
        
        Supported Functions
        ===================
        
         *  **cos**,  **sin**,  **abs**,  **log10**,  **log**,  **exp**, 
         *  **tan**,  **pi**,  **e**
         
        Versions
        ========
        
         *  1.3 - It saves the values for each sub-function.
         *  1.5 - Fixed OverFlow Error with Exp function
         
        Warnings
        --------
        
         * The variables **e** and **pi** are reserved for the evaluator
         * Exceptions for iterative variables are not supported 
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
